home *** CD-ROM | disk | FTP | other *** search
/ Quick PC 61 / Quick PC 61.iso / I386 / NETIPRIP.IN_ / netiprip.inf
Encoding:
INI File  |  2003-03-24  |  1.8 KB  |  70 lines

  1. ; -- NETIPRIP.INX --
  2. ;
  3. ; Route Listening Service
  4. ;
  5. ; Copyright (c) Microsoft Corporation.  All rights reserved.
  6.  
  7. [Version]
  8. Signature="$Windows NT$"
  9. LayoutFile=layout.inf
  10. Provider=%Msft%
  11. DriverVer=10/01/2002,5.2.3790.0
  12.  
  13. [Iprip]
  14. CopyFiles     = CpyFiles_Sys
  15. Uninstall     = Iprip.Remove
  16. StartServices = Iprip
  17.  
  18. [DestinationDirs]
  19. CpyFiles_Sys  = 11                ;System32
  20.  
  21. [Iprip.Upgrade]
  22. CopyFiles = CpyFiles_Sys
  23.  
  24. [Iprip.Services]
  25. AddService = Iprip,,    Iprip_Service_Inst, Iprip_Evt
  26.  
  27. [Iprip.Remove.Services]
  28. DelService = Iprip
  29.  
  30. [CpyFiles_Sys]
  31. iprip.dll,,,2
  32.  
  33. [CpyFiles_Sys.Security]
  34. "D:P(A;;GRGX;;;BU)(A;;GA;;;BA)(A;;GA;;;SY)(A;;GRGX;;;WD)"
  35.  
  36. [Iprip_Service_Inst]
  37. Description     = %Iprip_Desc%
  38. DisplayName     = %Iprip_Display%
  39. ServiceType     = 0x20 ;SERVICE_WIN32_SHARE_PROCESS
  40. StartType       = 2
  41. ErrorControl    = 1
  42. ServiceBinary   = "%%SystemRoot%%\System32\svchost.exe -k netsvcs"
  43. ;
  44. ; The dependency on RpcSs is because this service is set to auto-start
  45. ; and it runs in an instance of Svchost that needs to call
  46. ; CoInitailizeSecurity on behalf of the entire process.
  47. ; This call (made by svchost) will not succeed unless RpcSs is running.
  48. ;
  49. Dependencies    = RpcSS
  50. AddReg          = Iprip_AddReg
  51. Description     = %Iprip_Desc%
  52.  
  53. [Iprip_AddReg]
  54. HKR, Parameters, ServiceDll, 0x20000, "%%SystemRoot%%\System32\iprip.dll"
  55.  
  56. [Iprip_Evt]
  57. AddReg = Iprip_Evt_AddReg
  58.  
  59. [Iprip_Evt_AddReg]
  60. HKR,, EventMessageFile, 0x20000, "%%SystemRoot%%\System32\iprip.dll"
  61. HKR,, TypesSupported,   0x10001, 0x00000007
  62.  
  63. [Strings]
  64. Msft = "Microsoft"
  65.  
  66. Iprip_Desc = "Listens for route updates sent by routers that use the Routing Information Protocol version 1 (RIPv1)."
  67. Iprip_Display = "RIP Listener"
  68. Iprip_HELP = "This service listens for IP route updates and adds them to the local routing table.  (Also known as RIP for IP)"
  69.  
  70.